# Arrange Cowplot
ArrangePatchwork <- function(PlotList){
Plot <- PlotList[[1]]
for(i in 2:length(PlotList)){
Plot <- Plot + PlotList[[i]]
}
return(Plot)
}
ArrangeCowplot <- function(PlotList){
Plot <- PlotList[[1]]
for(i in 2:length(PlotList)){
Plot <- Plot + PlotList[[i]]
}
return(Plot)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.